Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-diff-index(1) |
| 2 | ================= |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 6 | git-diff-index - Compare a tree to the working tree or index |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | 15567bc | 2011-07-23 00:51:59 | [diff] [blame] | 11 | [verse] |
Junio C Hamano | 59a32b0 | 2021-12-10 22:53:38 | [diff] [blame] | 12 | 'git diff-index' [-m] [--cached] [--merge-base] [<common-diff-options>] <tree-ish> [<path>...] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 13 | |
| 14 | DESCRIPTION |
| 15 | ----------- |
Junio C Hamano | 7e590a1 | 2013-06-02 23:46:52 | [diff] [blame] | 16 | Compares the content and mode of the blobs found in a tree object |
| 17 | with the corresponding tracked files in the working tree, or with the |
| 18 | corresponding paths in the index. When <path> arguments are present, |
| 19 | compares only paths matching those patterns. Otherwise all tracked |
| 20 | files are compared. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 21 | |
| 22 | OPTIONS |
| 23 | ------- |
| 24 | include::diff-options.txt[] |
| 25 | |
| 26 | <tree-ish>:: |
| 27 | The id of a tree object to diff against. |
| 28 | |
| 29 | --cached:: |
Junio C Hamano | df3d3cd | 2020-11-02 22:05:05 | [diff] [blame] | 30 | Do not consider the on-disk file at all. |
| 31 | |
| 32 | --merge-base:: |
| 33 | Instead of comparing <tree-ish> directly, use the merge base |
| 34 | between <tree-ish> and HEAD instead. <tree-ish> must be a |
| 35 | commit. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 36 | |
| 37 | -m:: |
| 38 | By default, files recorded in the index but not checked |
| 39 | out are reported as deleted. This flag makes |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 40 | 'git diff-index' say that all non-checked-out files are up |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 41 | to date. |
| 42 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 43 | include::diff-format.txt[] |
| 44 | |
Junio C Hamano | b9d9d90 | 2018-05-23 07:07:42 | [diff] [blame] | 45 | OPERATING MODES |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 46 | --------------- |
| 47 | You can choose whether you want to trust the index file entirely |
Junio C Hamano | 92d8037 | 2016-07-13 22:00:05 | [diff] [blame] | 48 | (using the `--cached` flag) or ask the diff logic to show any files |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 49 | that don't match the stat state as being "tentatively changed". Both |
| 50 | of these operations are very useful indeed. |
| 51 | |
Junio C Hamano | b9d9d90 | 2018-05-23 07:07:42 | [diff] [blame] | 52 | CACHED MODE |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 53 | ----------- |
Junio C Hamano | 92d8037 | 2016-07-13 22:00:05 | [diff] [blame] | 54 | If `--cached` is specified, it allows you to ask: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 55 | |
| 56 | show me the differences between HEAD and the current index |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 57 | contents (the ones I'd write using 'git write-tree') |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 58 | |
| 59 | For example, let's say that you have worked on your working directory, updated |
Junio C Hamano | 235a91e | 2006-01-07 01:13:58 | [diff] [blame] | 60 | some files in the index and are ready to commit. You want to see exactly |
Junio C Hamano | dcc22ee | 2006-11-03 02:40:13 | [diff] [blame] | 61 | *what* you are going to commit, without having to write a new tree |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 62 | object and compare it that way, and to do that, you just do |
| 63 | |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 64 | git diff-index --cached HEAD |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 65 | |
| 66 | Example: let's say I had renamed `commit.c` to `git-commit.c`, and I had |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 67 | done an `update-index` to make that effective in the index file. |
| 68 | `git diff-files` wouldn't show anything at all, since the index file |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 69 | matches my working directory. But doing a 'git diff-index' does: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 70 | |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 71 | torvalds@ppc970:~/git> git diff-index --cached HEAD |
Junio C Hamano | 7bc7359 | 2022-07-11 23:08:34 | [diff] [blame] | 72 | :100644 000000 4161aecc6700a2eb579e842af0b7f22b98443f74 0000000000000000000000000000000000000000 D commit.c |
| 73 | :000000 100644 0000000000000000000000000000000000000000 4161aecc6700a2eb579e842af0b7f22b98443f74 A git-commit.c |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 74 | |
Junio C Hamano | dcc22ee | 2006-11-03 02:40:13 | [diff] [blame] | 75 | You can see easily that the above is a rename. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 76 | |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 77 | In fact, `git diff-index --cached` *should* always be entirely equivalent to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 78 | actually doing a 'git write-tree' and comparing that. Except this one is much |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 79 | nicer for the case where you just want to check where you are. |
| 80 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 81 | So doing a `git diff-index --cached` is basically very useful when you are |
Junio C Hamano | a77a513 | 2007-06-08 16:13:44 | [diff] [blame] | 82 | asking yourself "what have I already marked for being committed, and |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 83 | what's the difference to a previous tree". |
| 84 | |
Junio C Hamano | b9d9d90 | 2018-05-23 07:07:42 | [diff] [blame] | 85 | NON-CACHED MODE |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 86 | --------------- |
| 87 | The "non-cached" mode takes a different approach, and is potentially |
| 88 | the more useful of the two in that what it does can't be emulated with |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 89 | a 'git write-tree' + 'git diff-tree'. Thus that's the default mode. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 90 | The non-cached version asks the question: |
| 91 | |
| 92 | show me the differences between HEAD and the currently checked out |
Junio C Hamano | 88bf571 | 2017-09-10 08:39:23 | [diff] [blame] | 93 | tree - index contents _and_ files that aren't up to date |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 94 | |
| 95 | which is obviously a very useful question too, since that tells you what |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 96 | you *could* commit. Again, the output matches the 'git diff-tree -r' |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 97 | output to a tee, but with a twist. |
| 98 | |
| 99 | The twist is that if some file doesn't match the index, we don't have |
| 100 | a backing store thing for it, and we use the magic "all-zero" sha1 to |
| 101 | show that. So let's say that you have edited `kernel/sched.c`, but |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 102 | have not actually done a 'git update-index' on it yet - there is no |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 103 | "object" associated with the new state, and you get: |
| 104 | |
Junio C Hamano | ef5a2f9 | 2011-05-31 19:53:33 | [diff] [blame] | 105 | torvalds@ppc970:~/v2.6/linux> git diff-index --abbrev HEAD |
Junio C Hamano | 7bc7359 | 2022-07-11 23:08:34 | [diff] [blame] | 106 | :100644 100644 7476bb5ba 000000000 M kernel/sched.c |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 107 | |
Junio C Hamano | 88bf571 | 2017-09-10 08:39:23 | [diff] [blame] | 108 | i.e., it shows that the tree has changed, and that `kernel/sched.c` is |
| 109 | not up to date and may contain new stuff. The all-zero sha1 means that to |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 110 | get the real diff, you need to look at the object in the working directory |
| 111 | directly rather than do an object-to-object diff. |
| 112 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 113 | NOTE: As with other commands of this type, 'git diff-index' does not |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 114 | actually look at the contents of the file at all. So maybe |
| 115 | `kernel/sched.c` hasn't actually changed, and it's just that you |
| 116 | touched it. In either case, it's a note that you need to |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 117 | 'git update-index' it to make the index be in sync. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 118 | |
| 119 | NOTE: You can have a mixture of files show up as "has been updated" |
| 120 | and "is still dirty in the working directory" together. You can always |
| 121 | tell which file is in which state, since the "has been updated" ones |
| 122 | show a valid sha1, and the "not in sync with the index" ones will |
| 123 | always have the special all-zero sha1. |
| 124 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 125 | GIT |
| 126 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 127 | Part of the linkgit:git[1] suite |